home *** CD-ROM | disk | FTP | other *** search
/ Family Forum 255 / SOMC Family Forum 255.iso / Main16.exe / Main16.dxr / 00032_DownArrow.ls < prev    next >
Encoding:
Text File  |  1998-09-14  |  296 b   |  23 lines

  1. on mouseEnter
  2.   if not count(the windowList) then
  3.     doRollover2()
  4.   end if
  5. end
  6.  
  7. on mouseLeave
  8.   if not count(the windowList) then
  9.     doRollout()
  10.   end if
  11. end
  12.  
  13. on mouseDown
  14.   glow(57, 1)
  15.   updateStage()
  16. end
  17.  
  18. on mouseUp
  19.   updateStage()
  20.   scrollByLine(member "Family1Text", -1)
  21.   glow(57, 0)
  22. end
  23.